home *** CD-ROM | disk | FTP | other *** search
/ J-Mac Electronics & Home Comics / J-Mac Electronics & Home Comics.iso / mac / J-MAC / G20F / G20_SHIO.Dxr / 00080_Manime.ls < prev    next >
Encoding:
Text File  |  1998-01-22  |  305 b   |  18 lines

  1. on wait t
  2.   startTimer()
  3.   repeat while the timer <= t
  4.     nothing()
  5.   end repeat
  6. end
  7.  
  8. on animet
  9.   repeat with i = 1 to 6
  10.     set cn to the memberNum of sprite i
  11.     set the memberNum of sprite i to cn + 6
  12.     updateStage()
  13.     wait(5)
  14.     set the memberNum of sprite i to cn
  15.     wait(5)
  16.   end repeat
  17. end
  18.